home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / windows / wdj1096.zip / OTALA.ZIP / MAKEFILE.BC < prev    next >
Text File  |  1996-06-29  |  653b  |  36 lines

  1. #
  2. # Makefile for Borland C/C++ 4.x
  3. #
  4. CC = bcc
  5. LN = tlink
  6. RC = brcc
  7. RL = rlink
  8.  
  9. CCFLAGS = /c /ms /WE /w /DSTRICT /I$(INCLUDE)
  10. LNFLAGS = /m /Twe /L$(LIB)
  11. RCFLAGS = 
  12. RLFLAGS = /31
  13.  
  14. OBJ_FILES = demo.obj ewv.obj
  15. LIB_FILES = cws.lib import.lib
  16.  
  17. all : demo.exe
  18.  
  19. .cpp.obj :
  20.         $(CC) $(CCFLAGS) $<
  21.  
  22. ewv.obj : ewv.cpp ewv.h
  23.  
  24. demo.obj : demo.cpp demo.h ewv.h
  25.  
  26. demo.bin : $(OBJ_FILES) demo.def
  27.         $(LN) $(LNFLAGS) c0ws $(OBJ_FILES),$@,demo.map,$(LIB_FILES),demo.def
  28.  
  29. demo.res : demo.rc demo.h
  30.         $(RC) $(RCFLAGS) demo.rc
  31.  
  32. demo.exe : demo.bin demo.res
  33.         @copy demo.bin $@
  34.         $(RL) $(RLFLAGS) demo.res $@
  35.  
  36.